home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xmcd-1.4 / wm2xmcd.d / Imakefile next >
Encoding:
Makefile  |  1995-05-10  |  1.2 KB  |  62 lines

  1. /*
  2.  *   @(#)Imakefile    5.2 94/12/28
  3.  *
  4.  *   Imakefile for wm2xmcd
  5.  *
  6.  *    wm2xmcd - Workman-to-Xmcd CD database file converter
  7.  *
  8.  *   Copyright (C) 1995  Ti Kan
  9.  *   E-mail: ti@amb.org
  10.  *
  11.  *   This program is free software; you can redistribute it and/or modify
  12.  *   it under the terms of the GNU General Public License as published by
  13.  *   the Free Software Foundation; either version 2 of the License, or
  14.  *   (at your option) any later version.
  15.  *
  16.  *   This program is distributed in the hope that it will be useful,
  17.  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  *   GNU General Public License for more details.
  20.  *
  21.  *   You should have received a copy of the GNU General Public License
  22.  *   along with this program; if not, write to the Free Software
  23.  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  *
  25.  */
  26.  
  27.  
  28. /*
  29.  * Add local include path
  30.  */
  31. INCLUDES=-I..
  32.  
  33.  
  34. /*
  35.  * C source files
  36.  */
  37. SRCS=    wm2xmcd.c
  38.  
  39.  
  40. /*
  41.  * Objects
  42.  */
  43. OBJS=    wm2xmcd.o
  44.  
  45.  
  46. /*
  47.  * No X11 libraries needed for wm2xmcd
  48.  */
  49. LOCAL_LIBRARIES=
  50.  
  51.  
  52. /*
  53.  * Build rule
  54.  */
  55. #ifdef InstallProgram
  56. #undef InstallProgram
  57. #define InstallProgram(program, dest)
  58. #endif
  59. SimpleProgramTarget(wm2xmcd)
  60.  
  61.  
  62.